home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / editors / emacs / xemacs / xemacs-1.004 / xemacs-1 / xemacs-19.13 / src / ExternalClient.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-08-29  |  2.0 KB  |  74 lines

  1. /* External client widget external header file.
  2.    Copyright (C) 1993, 1994 Sun Microsystems, Inc.
  3.  
  4. This library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Library General Public
  6. License as published by the Free Software Foundation; either
  7. version 2 of the License, or (at your option) any later version.
  8.  
  9. This library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12. Library General Public License for more details.
  13.  
  14. You should have received a copy of the GNU Library General Public
  15. License along with this library; if not, write to the Free
  16. Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
  17.  
  18. /* Synched up with: Not in FSF. */
  19.  
  20. /* Written by Ben Wing. */
  21.  
  22. #ifndef _ExternalClient_h
  23. #define _ExternalClient_h
  24.  
  25. #ifndef XtNshellTimeout
  26. #define XtNshellTimeout "shellTimeout"
  27. #endif
  28. #ifndef XtCShellTimeout
  29. #define XtCShellTimeout "ShellTimeout"
  30. #endif
  31.  
  32. #ifndef XtNdeadShell
  33. #define XtNdeadShell "deadShell"
  34. #endif
  35. #ifndef XtCDeadShell
  36. #define XtCDeadShell "DeadShell"
  37. #endif
  38.  
  39. #ifndef XtNemacsProcID
  40. #define XtNemacsProcID "emacsProcID"
  41. #endif
  42. #ifndef XtCEmacsProcID
  43. #define XtCEmacsProcID "EmacsProcID"
  44. #endif
  45.  
  46. #ifndef XtNshellReadyCallback
  47. #define XtNshellReadyCallback "shellReadyCallback"
  48. #endif
  49.  
  50. #ifndef XtNshellName
  51. #define XtNshellName "shellName"
  52. #endif
  53. #ifndef XtCShellName
  54. #define XtCShellName "ShellName"
  55. #endif
  56.  
  57. #ifndef XtNuseToolTalk
  58. #define XtNuseToolTalk "useToolTalk"
  59. #endif
  60. #ifndef XtCUseToolTalk
  61. #define XtCUseToolTalk "UseToolTalk"
  62. #endif
  63.  
  64. typedef struct _ExternalClientClassRec *ExternalClientWidgetClass;
  65. typedef struct _ExternalClientRec *ExternalClientWidget;
  66. extern WidgetClass externalClientWidgetClass;
  67.  
  68. /* External entry points when using direct Xlib */
  69.  
  70. void ExternalClientInitialize (Display *display);
  71. void ExternalClientEventHandler (Display *display, Window win, XEvent *event);
  72.  
  73. #endif /* _ExternalClient_h */
  74.